home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 January: Mac OS SDK / Dev.CD Jan 99 SDK1.toast / Development Kits / ColorSync 2.5.1 SDK / Sample Code / DropShell / DSUserProcs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-09-09  |  2.0 KB  |  57 lines  |  [TEXT/MPS ]

  1. /******************************************************************************
  2. **
  3. **  Project Name:    DropShell
  4. **     File Name:    DSUserProcs.h
  5. **
  6. **   Description:    Header w/prototypes for specific AppleEvent handlers 
  7. **                    used by the DropShell
  8. **
  9. *******************************************************************************
  10. **                       A U T H O R   I D E N T I T Y
  11. *******************************************************************************
  12. **
  13. **    Initials    Name
  14. **    --------    -----------------------------------------------
  15. **    LDR            Leonard Rosenthol
  16. **    MTC            Marshall Clow
  17. **    SCS            Stephan Somogyi
  18. **
  19. *******************************************************************************
  20. **                      R E V I S I O N   H I S T O R Y
  21. *******************************************************************************
  22. **
  23. **      Date        Time    Author    Description
  24. **    --------    -----    ------    ---------------------------------------------
  25. **    02/20/94            LDR        Modified Preflight & Postflight to take item count
  26. **    01/25/92            LDR        Removed the use of const on the userDataHandle
  27. **    12/09/91            LDR        Added SelectFile & UserGlobals prototypes
  28. **    11/24/91            LDR        Added new routines & changed ones
  29. **    10/29/91            SCS        Changes for THINK C 5
  30. **    10/28/91            LDR        Officially renamed DropShell (from QuickShell)
  31. **                                Added a bunch of comments for clarification
  32. **    10/06/91    00:02    MTC        Converted to MPW C
  33. **    04/09/91    00:02    LDR        Original Version
  34. **
  35. ******************************************************************************/
  36.  
  37. #ifndef __DSUSERPROCS_H__
  38. #define __DSUSERPROCS_H__
  39.  
  40. #include "DSGlobals.h"
  41. #include "DSUtils.h"
  42.  
  43. #ifndef qWalkFolders
  44. #define qWalkFolders        1
  45. #endif
  46.  
  47. void    InstallOtherEvents (void);
  48. void     OpenApp (void);
  49. void     QuitApp (void);
  50. Boolean    PreFlightDocs ( Boolean opening, short itemCount, Handle *userDataHandle );
  51. void     OpenDoc ( FSSpecPtr myFSSPtr,  Boolean opening, Handle userDataHandle );
  52. void     PostFlightDocs ( Boolean opening, short itemCount, Handle userDataHandle );
  53. Boolean    InitUserGlobals(void);
  54. void    DisposeUserGlobals(void);
  55.  
  56. #endif
  57.